home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / Unsupported Libraries / CustomIO_Lib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-21  |  428 b   |  28 lines  |  [TEXT/MPS ]

  1. /*
  2.  * CustomIO_Lib.h
  3.  */
  4. #include "QD3D.h"
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif  /* __cplusplus */
  9.  
  10. TQ3Status CustomAttribute_Register(
  11.     void);
  12.  
  13. TQ3Status CustomAttribute_Unregister(
  14.     void);
  15.  
  16.  
  17. #define kCustomAttributeType    ((TQ3AttributeType) 0xF00DF00D)
  18.  
  19. typedef struct CustomAttributeRecord {
  20.     TQ3DisplayGroupObject    clickModel;
  21.     TQ3Boolean                isOn;        
  22. } CustomAttributeRecord;
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif    /* __cplusplus */
  27.  
  28.